<--- %%NOBANNER%% --> tail.sas
 BackForward
/*
%let list=a b c d e\6;
%put LIST=&list TAIL=%tail(&list);
%put LIST=&list TAIL=%tail(&list, split=\);

*/

%macro tail(arg1, dlm=%str( ));
    %scan(&arg1, %words(&arg1, dlm=%str(&dlm)), %str(&dlm))
%mend tail;